renamed GUnowned to GInitiallyUnowned.
authorTim Janik <timj@gtk.org>
Thu, 22 Dec 2005 17:58:40 +0000 (17:58 +0000)
committerTim Janik <timj@src.gnome.org>
Thu, 22 Dec 2005 17:58:40 +0000 (17:58 +0000)
Thu Dec 22 18:53:14 2005  Tim Janik  <timj@gtk.org>

        * gtk/gtkobject.[hc]: renamed GUnowned to GInitiallyUnowned.

ChangeLog
ChangeLog.pre-2-10
gtk/gtkobject.c
gtk/gtkobject.h

index af8489d6bbf7771f19c4a07cb6575fa854b155a4..88108ed49f538123293fd4fb812f74110d14a037 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 22 18:53:14 2005  Tim Janik  <timj@gtk.org>
+
+        * gtk/gtkobject.[hc]: renamed GUnowned to GInitiallyUnowned.
+
 Thu Dec 22 17:55:11 2005  Tim Janik  <timj@gtk.org>
 
        * gtk/gtkobject.h: parent type fixups in structure declarations.
index af8489d6bbf7771f19c4a07cb6575fa854b155a4..88108ed49f538123293fd4fb812f74110d14a037 100644 (file)
@@ -1,3 +1,7 @@
+Thu Dec 22 18:53:14 2005  Tim Janik  <timj@gtk.org>
+
+        * gtk/gtkobject.[hc]: renamed GUnowned to GInitiallyUnowned.
+
 Thu Dec 22 17:55:11 2005  Tim Janik  <timj@gtk.org>
 
        * gtk/gtkobject.h: parent type fixups in structure declarations.
index 406e93e5c54bb749c8f14aded878b5c46085a99b..287aefb556cdc7dc3f93b1fa7ff6478ce7fbd141 100644 (file)
@@ -96,7 +96,7 @@ gtk_object_get_type (void)
        NULL,           /* value_table */
       };
       
-      object_type = g_type_register_static (G_TYPE_UNOWNED, I_("GtkObject"), 
+      object_type = g_type_register_static (G_TYPE_INITIALLY_UNOWNED, I_("GtkObject"), 
                                            &object_info, G_TYPE_FLAG_ABSTRACT);
     }
 
index b617f5d6d0461d1a01963ed3302f719a0ad0a393..22d4bf4b2cf344ecd32cb897c98076b920a94d69 100644 (file)
@@ -82,7 +82,7 @@ typedef struct _GtkObjectClass        GtkObjectClass;
 
 struct _GtkObject
 {
-  GUnowned parent_instance;
+  GInitiallyUnowned parent_instance;
   
   /* 32 bits of flags. GtkObject only uses 4 of these bits and
    *  GtkWidget uses the rest. This is done because structs are
@@ -94,7 +94,7 @@ struct _GtkObject
 
 struct _GtkObjectClass
 {
-  GUnownedClass parent_class;
+  GInitiallyUnownedClass parent_class;
   
   /* Non overridable class methods to set and get per class arguments */
   void (*set_arg) (GtkObject *object,